{% extends "base.html" %} {% block title %}Manage Reviews - Admin Panel{% endblock %} {% block content %}
| # | Patient | Doctor | Rating | Tags | Comment | Date | Status | Action |
|---|---|---|---|---|---|---|---|---|
| {{ review.id }} | {{ review.patient.user.name }} | {{ review.doctor.user.name }} | {% for i in range(1, 6) %} {% endfor %} ({{ review.rating }}/5) | {% for tag in (review.tags or []) %} {{ tag }} {% endfor %} | {% if review.comment %} "{{ review.comment[:80] }}{% if review.comment|length > 80 %}...{% endif %}" {% else %} — {% endif %} | {{ review.created_at.strftime('%d %b %Y') }} | {% if review.is_visible %} Public {% else %} Hidden {% endif %} |
Patient reviews will appear here after appointments are completed.